home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / MacUtilities / 00201_Support7.ls < prev    next >
Encoding:
Text File  |  2000-10-18  |  358 b   |  16 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   member("Support").foreColor = 70
  4.   put "Click to go to this product's support page. You need an Internet connection to do this!" into member "InfoField"
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(0)
  9.   member("Support").foreColor = 255
  10.   put EMPTY into member "InfoField"
  11. end
  12.  
  13. on mouseDown
  14.   gotoNetPage("http://www.blueline-studios.com")
  15. end
  16.